home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #5 / CD 5 (Black) - 2001.iso / K-CS.dcr / 00078_Drag'n'Drop.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  2.5 KB  |  58 lines

  1. property TargetSprite, startPos, correctspringBack, incorrectspringBack, incorrectvanish, correctvanish, IncorrectCommand, correctCommand, DescribeSprite
  2. global Errorcount
  3.  
  4. on new me
  5.   set the visible of sprite the spriteNum of me to 1
  6. end
  7.  
  8. on mouseDown me
  9.   set startPos to the loc of sprite the spriteNum of me
  10.   repeat while the stillDown = 1
  11.     set the loc of sprite the spriteNum of me to point(the mouseH, the mouseV)
  12.     updateStage()
  13.   end repeat
  14. end
  15.  
  16. on mouseEnter me
  17.   set the visible of sprite DescribeSprite to 1
  18. end
  19.  
  20. on mouseLeave me
  21.   set the visible of sprite DescribeSprite to 0
  22. end
  23.  
  24. on mouseUp me
  25.   if sprite the spriteNum of me intersects sprite(the TargetSprite of me) then
  26.     puppetSound("HitSound")
  27.     do(the correctCommand of me)
  28.     if the correctvanish of me = 1 then
  29.       set the loc of sprite the spriteNum of me to point(1000, 1000)
  30.       exit
  31.     end if
  32.     if the correctspringBack of me = 1 then
  33.       set the loc of sprite the spriteNum of me to startPos
  34.     end if
  35.   else
  36.     do(the IncorrectCommand of me)
  37.   end if
  38.   if the incorrectvanish of me = 1 then
  39.     set the loc of sprite the spriteNum of me to point(1000, 1000)
  40.     exit
  41.   end if
  42.   if the incorrectspringBack of me = 1 then
  43.     set the loc of sprite the spriteNum of me to startPos
  44.   end if
  45. end
  46.  
  47. on getBehaviorDescription
  48.   return "Creates sprites that can be dropped on any other [user specified] sprite. You can define the target sprite, " && RETURN & "whether the dragged sprite snaps back to it's start position, and handlers to run if the drop was on or off target."
  49. end
  50.  
  51. on getPropertyDescriptionList
  52.   if voidp(TargetSprite) then
  53.     set TargetSprite to 1
  54.   end if
  55.   set p_list to [#TargetSprite: [#default: TargetSprite, #format: #integer, #comment: "Target Sprite Number", #range: [#min: 1, #max: 120]], #incorrectspringBack: [#default: 1, #format: #boolean, #comment: "Spring back when incorrect?"], #correctspringBack: [#default: 0, #format: #boolean, #comment: "Spring back when correct?"], #incorrectvanish: [#default: 0, #format: #boolean, #comment: "Vanish when dropped off the target?"], #correctvanish: [#default: 1, #format: #boolean, #comment: "Vanish when dropped on the target?"], #correctCommand: [#format: #string, #comment: "The handler to run if dropped on the target", #default: "beep"], #IncorrectCommand: [#format: #string, #comment: "The handler to run if dropped off the target", #default: "beep 2"], #DescribeSprite: [#default: 0, #format: #integer, #comment: "Description of sprite - appear on rollover, vanish on click", #range: [#min: 1, #max: 120]]]
  56.   return p_list
  57. end
  58.